home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / comm / zsv_101.zip / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1996-05-07  |  670b  |  25 lines

  1. echo off
  2. echo.
  3. echo.
  4. echo   This program will copy the manual to your printer.
  5. echo.
  6. echo   The manual is formatted for 60 lines per page
  7. echo   with a left margin of 5 spaces.
  8. echo.
  9. echo   A single copy command is used:  Copy *.DOC PRN
  10. echo   Any files with the "DOC" filename extension will be printed.
  11. echo.
  12. echo   If you don't want that to happen then stop this program now
  13. echo   and use the copy command at the DOS prompt to print just the
  14. echo   file you want.
  15. echo.
  16. echo.
  17. echo   Hit Cntrl-Break or Cntrl-C NOW if you wish to stop.
  18. echo.
  19. echo   Otherwise, make sure the printer is on, paper is loaded and
  20. pause
  21. echo.
  22. copy *.doc prn
  23. echo.
  24.  
  25.